home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-12-02 | 401 b | 17 lines | [TEXT/ToyS] |
- tell (choose application with prompt ¬
- "Select Quill on a machine to get its clipboard")
- if not frontmost then
- activate
- on error
- display dialog "Clipboard may not be up to date… " & ¬
- "Quill is not frontmost"
- end error
- end if
- copy clipboard to x
- end tell
- tell application "Quill"
- activate
- set clipboard to x
- display dialog "Clipboard set with " & length of x & " formats"
- end tell
-